From ac31af30eb11fda1cb8cf47417f52ea72c2156a5 Mon Sep 17 00:00:00 2001 From: robertl Date: Mon, 17 Jul 2006 16:31:58 +0000 Subject: [PATCH] Allow 200 points instead of 199 in maggeo. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@2237 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/maggeo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/maggeo.c b/gpsbabel/maggeo.c index d1d9089b4..e738685a8 100644 --- a/gpsbabel/maggeo.c +++ b/gpsbabel/maggeo.c @@ -55,7 +55,7 @@ maggeo_rd_deinit(void) static void maggeo_wr_init(const char *fname) { - if (waypt_count() >= 200) { + if (waypt_count() > 200) { fatal(MYNAME ": eXplorist does not support more than 200 waypoints in one .gs file.\nDecrease the number of waypoints sent.\n"); } maggeofile_out = xfopen(fname, "wb", MYNAME); -- 2.30.2